home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / lvswin31.zip / DEMO.DOC < prev    next >
Text File  |  1992-02-26  |  3KB  |  70 lines

  1. To build the demo programs.
  2.  
  3. Turbo C++ v1.0
  4.     TCC -ms -Z -O DEMO.CPP WINOBJ_S.LIB
  5.     TCC -ms -Z -O DEMO2.CPP WINOBJ_S.LIB
  6.     TCC -ms -Z -O DEMO3.CPP WINOBJ_S.LIB
  7.     TCC -ms -Z -O DEMO4.CPP WINOBJ_S.LIB
  8.  
  9. Borland C++ v2.0
  10.     BCC -ms -Z -O DEMO.CPP WINOBJ_S.LIB
  11.     BCC -ms -Z -O DEMO2.CPP WINOBJ_S.LIB
  12.     BCC -ms -Z -O DEMO3.CPP WINOBJ_S.LIB
  13.     BCC -ms -Z -O DEMO4.CPP WINOBJ_S.LIB
  14.  
  15. Zortech C++ v3.0
  16.     ztc -mm DEMO.CPP WINOBJZM.LIB
  17.     ztc -ms DEMO2.CPP WINOBJZS.LIB
  18.     ztc -ms DEMO3.CPP WINOBJZS.LIB
  19.     ztc -ms DEMO4.CPP WINOBJZS.LIB
  20.  
  21.  
  22. Some of the features of the Demo.CPP program provided with LVS Windows.
  23.  
  24. Command line options:
  25.     /b   use bios video writes
  26.     /s   CGA snow suppression
  27.     /m   remap colors to black & white
  28.     /ms  use simple mouse support, full support by default
  29.     /mn  use no mouse support
  30.     /5   use VGA 50 line mode
  31.     /2   use VGA 28 line mode
  32.     /V   don't use VGA graphics/colors (default do use)
  33.  
  34.  
  35. Using the Mouse:
  36.     You must have a MicroSoft compatible mouse with mouse.com 
  37.     loaded for mouse support.
  38.  
  39.     Simple support:  (/ms switch)
  40.         - there will be no mouse cursor present.
  41.         - moving the mouse is equal to using the arrow keys.
  42.         - the right mouse button equates to the ESC key.
  43.         - the left mouse button equates to ENTER.
  44.  
  45.     Full support:  (default)
  46.         - there will be a mouse cursor.
  47.         - the right mouse button equates to the ESC key.
  48.         - to make a menu selection, click the left button the
  49.           the item of your choice.
  50.         - you can move any bordered window.  Move the mouse cursor
  51.           to the top border of the window you wish to move.  Press 
  52.           and hold the left mouse button.  The top left edge of the
  53.           window will follow the mouse cursor until you release the
  54.           left button.
  55.         - you can resize any bordered window.  Move the mouse cursor
  56.           to the bottom right corner of the window.  Press and hold 
  57.           the left mouse button.  You can now make the window shrink
  58.           and grow by moving the mouse.  The max size for any window
  59.           is its virtual size.  Any window which is smaller than its
  60.           virtual size will have panning arrows on the left and/or
  61.           bottom border.
  62.         - you can pan a window which has a virtual size larger than
  63.           its fisical size.  Just click on the panning arrows on
  64.           the left or top border.  Holding down on the left button
  65.           will cause the window to pan until the end.
  66.         - you can scroll a pick list by clicking on the up/down 
  67.           arrows on the left border of the window.
  68.         - you can move the text cursor in a data entry window by
  69.           clicking on the field of your choice.
  70.